home *** CD-ROM | disk | FTP | other *** search
/ 600 Games / 600games.iso / Diversos / fusion_frenzy.swf / scripts / DefineButton2_187 / BUTTONCONDACTION on(release).as < prev   
Encoding:
Text File  |  2007-03-20  |  348 b   |  14 lines

  1. on(release){
  2.    if(_global.inGameInstructions == false)
  3.    {
  4.       if(_global.lastScreen != null)
  5.       {
  6.          this[_global.lastScreen].targetX = -500;
  7.          this[_global.lastScreen].moveMe = true;
  8.       }
  9.       _global.inGameInstructions = true;
  10.       _global.lastScreen = "instructions";
  11.       this.tint.fadeMe = "up";
  12.    }
  13. }
  14.